home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 December / maximum-cd-2009-12.iso / DiscContents / gimp-2.7.0-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / comic-logo.scm < prev    next >
Encoding:
GIMP Script-Fu Script  |  2009-08-19  |  6.4 KB  |  170 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; This program is free software: you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 3 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program.  If not, see <http://www.gnu.org/licenses/>.
  16. ;
  17. ;  Comic Book Logo v0.1  04/08/98
  18. ;  by Brian McFee
  19. ;  Creates snazzy-looking text, inspired by watching a Maxx marathon :)
  20.  
  21. (define (apply-comic-logo-effect img
  22.                                  logo-layer
  23.                                  gradient
  24.                                  gradient-reverse
  25.                                  ol-width
  26.                                  ol-color
  27.                                  bg-color)
  28.   (let* (
  29.         (width (car (gimp-drawable-width logo-layer)))
  30.         (height (car (gimp-drawable-height logo-layer)))
  31.         (posx (- (car (gimp-drawable-offsets logo-layer))))
  32.         (posy (- (cadr (gimp-drawable-offsets logo-layer))))
  33.         (bg-layer (car (gimp-layer-new img width height RGBA-IMAGE
  34.                                        "Background" 100 NORMAL-MODE)))
  35.         (white-layer (car (gimp-layer-copy logo-layer 1)))
  36.         (black-layer (car (gimp-layer-copy logo-layer 1)))
  37.         )
  38.  
  39.     (gimp-context-push)
  40.  
  41.     (script-fu-util-image-resize-from-layer img logo-layer)
  42.     (script-fu-util-image-add-layers img black-layer white-layer bg-layer)
  43.     (gimp-layer-translate white-layer posx posy)
  44.     (gimp-drawable-set-name white-layer "White")
  45.     (gimp-layer-translate black-layer posx posy)
  46.     (gimp-drawable-set-name black-layer "Black")
  47.  
  48.     (gimp-selection-all img)
  49.     (gimp-context-set-background bg-color)
  50.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  51.     (gimp-selection-none img)
  52.  
  53.     (gimp-layer-set-lock-alpha white-layer TRUE)
  54.     (gimp-context-set-background ol-color)
  55.     (gimp-selection-all img)
  56.     (gimp-edit-fill white-layer BACKGROUND-FILL)
  57.     (gimp-layer-set-lock-alpha white-layer FALSE)
  58.     (plug-in-spread RUN-NONINTERACTIVE img white-layer (* 3 ol-width) (* 3 ol-width))
  59.     (plug-in-gauss-rle RUN-NONINTERACTIVE img white-layer (* 2 ol-width) 1 1)
  60.     (plug-in-threshold-alpha RUN-NONINTERACTIVE img white-layer 0)
  61.     (gimp-layer-set-lock-alpha white-layer TRUE)
  62.     (gimp-edit-fill white-layer BACKGROUND-FILL)
  63.     (gimp-selection-none img)
  64.  
  65.     (gimp-context-set-background '(0 0 0))
  66.     (gimp-layer-set-lock-alpha black-layer TRUE)
  67.     (gimp-selection-all img)
  68.     (gimp-edit-fill black-layer BACKGROUND-FILL)
  69.     (gimp-selection-none img)
  70.     (gimp-layer-set-lock-alpha black-layer FALSE)
  71.     (plug-in-gauss-rle RUN-NONINTERACTIVE img black-layer ol-width 1 1)
  72.     (plug-in-threshold-alpha RUN-NONINTERACTIVE img black-layer 0)
  73.  
  74.     (gimp-context-set-gradient gradient)
  75.     (gimp-layer-set-lock-alpha logo-layer TRUE)
  76.     (gimp-selection-all img)
  77.  
  78.     (gimp-edit-blend logo-layer CUSTOM-MODE NORMAL-MODE
  79.                      GRADIENT-LINEAR 100 0 REPEAT-NONE gradient-reverse
  80.                      FALSE 0 0 TRUE
  81.                      0 (* height 0.3) 0 (* height 0.78))
  82.  
  83.     (plug-in-noisify RUN-NONINTERACTIVE img logo-layer 0 0.20 0.20 0.20 0.20)
  84.     (gimp-selection-none img)
  85.     (gimp-layer-set-lock-alpha logo-layer FALSE)
  86.     (gimp-brightness-contrast logo-layer 0 30)
  87.     (plug-in-threshold-alpha RUN-NONINTERACTIVE img logo-layer 60)
  88.     (gimp-image-set-active-layer img logo-layer)
  89.  
  90.     (gimp-context-pop)
  91.   )
  92. )
  93.  
  94. (define (script-fu-comic-logo-alpha img
  95.                                     logo-layer
  96.                                     gradient
  97.                                     gradient-reverse
  98.                                     ol-width
  99.                                     ol-color
  100.                                     bg-color)
  101.   (begin
  102.     (gimp-image-undo-group-start img)
  103.     (apply-comic-logo-effect img logo-layer
  104.                              gradient gradient-reverse
  105.                              ol-width ol-color bg-color)
  106.     (gimp-image-undo-group-end img)
  107.     (gimp-displays-flush)
  108.   )
  109. )
  110.  
  111. (script-fu-register "script-fu-comic-logo-alpha"
  112.   _"Comic Boo_k..."
  113.   _"Add a comic-book effect to the selected region (or alpha) by outlining and filling with a gradient"
  114.   "Brian McFee <keebler@wco.com>"
  115.   "Brian McFee"
  116.   "April 1998"
  117.   "RGBA"
  118.   SF-IMAGE      "Image"             0
  119.   SF-DRAWABLE   "Drawable"          0
  120.   SF-GRADIENT   _"Gradient"         "Incandescent"
  121.   SF-TOGGLE     _"Gradient reverse" FALSE
  122.   SF-ADJUSTMENT _"Outline size"     '(5 1 100 1 10 0 1)
  123.   SF-COLOR      _"Outline color"    "white"
  124.   SF-COLOR      _"Background color" "white"
  125. )
  126.  
  127. (script-fu-menu-register "script-fu-comic-logo-alpha"
  128.                          "<Image>/Filters/Alpha to Logo")
  129.  
  130.  
  131. (define (script-fu-comic-logo text
  132.                               size
  133.                               font
  134.                               gradient
  135.                               gradient-reverse
  136.                               ol-width
  137.                               ol-color
  138.                               bg-color)
  139.   (let* ((img (car (gimp-image-new 256 256 RGB)))
  140.          (border (/ size 4))
  141.          (text-layer (car (gimp-text-fontname
  142.                            img -1 0 0 text border TRUE size PIXELS font))))
  143.     (gimp-image-undo-disable img)
  144.     (apply-comic-logo-effect img text-layer gradient gradient-reverse
  145.                              ol-width ol-color bg-color)
  146.     (gimp-image-undo-enable img)
  147.     (gimp-display-new img)
  148.   )
  149. )
  150.  
  151. (script-fu-register "script-fu-comic-logo"
  152.   _"Comic Boo_k..."
  153.   _"Create a comic-book style logo by outlining and filling with a gradient"
  154.   "Brian McFee <keebler@wco.com>"
  155.   "Brian McFee"
  156.   "April 1998"
  157.   ""
  158.   SF-STRING     _"Text"               "Moo"
  159.   SF-ADJUSTMENT _"Font size (pixels)" '(85 2 1000 1 10 0 1)
  160.   SF-FONT       _"Font"               "Tribeca"
  161.   SF-GRADIENT   _"Gradient"           "Incandescent"
  162.   SF-TOGGLE     _"Gradient reverse"   FALSE
  163.   SF-ADJUSTMENT _"Outline size"       '(5 1 100 1 10 0 1)
  164.   SF-COLOR      _"Outline color"      "white"
  165.   SF-COLOR      _"Background color"   "white"
  166. )
  167.  
  168. (script-fu-menu-register "script-fu-comic-logo"
  169.                          "<Image>/File/Create/Logos")
  170.